Installation
Automatic Installation
With NPX
sudo npx loopar-env project-name --port 8080
Your server will start automatically in the dev environment.
Manual Installation
Clone from Git
git clone https://github.com/alphabit-technology/loopar-framework.git project-name
cd project-name
Install with pnpm
pnpm install
pnpm run dev
Install with yarn
yarn install
yarn run dev
The base configuration of the project has been created based on workspaces for easy maintenance of the integrated technologies, hence the exclusive use of pnpm or yarn for its installation is recommended..
When any last proccess is completed, you can navigate in your browser, next the system show for you a wizard installation when you can define your DataBase type and conecction data, next you need define your project data, then your installation is completed.
Now you can to start a design your projects
Build for Production
Loopar leverages the power of Vite to simplify the production deployment process. With just a few commands, your application is ready for production:
sudo npm run build
sudo NODE_ENV=production npm run start
For enhanced management and monitoring, you can use PM2:
pm2 start "sudo NODE_ENV=production npm run start" --name "loopar"
To achieve greater stability and scalability, consider setting up a reverse proxy like Nginx, which provides improved load balancing, security, and performance optimization for your production environment.
This straightforward process ensures that deploying Loopar is efficient and reliable, allowing you to focus on building and scaling your applications.